Skip to content
This repository was archived by the owner on Jul 30, 2024. It is now read-only.

💥Remove the stuff deprecated in previous version (v0.12.0) #308

Merged
merged 1 commit into from
Aug 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,6 @@ trait Crypto extends js.Object {
* will display the available digest algorithms.
* @param algorithm the given algorithm (e.g. 'sha256', 'sha512')
*/
@deprecated("Use CreateHashOptions instead.", "v0.12.0")
def createHash(algorithm: String, options: TransformOptions): Hash = js.native
def createHash(algorithm: String, options: CreateHashOptions): Hash = js.native
def createHash(algorithm: String): Hash = js.native

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@ import scala.scalajs.js

package object vm {
type Context = js.Object
@deprecated("Use js.Object instead", "v0.12.0")
type ScriptContext = js.Object
}