File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/scala/org/scalajs/dom/crypto Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -809,7 +809,7 @@ object Pbkdf2Params {
809
809
810
810
/** See [[http://www.w3.org/TR/WebCryptoAPI/#cryptokey-interface ¶ 13. CryptoKey Interface ]] of w3c spec */
811
811
@ js.native
812
- trait KeyUsage extends js.Any
812
+ sealed trait KeyUsage extends js.Any
813
813
814
814
object KeyUsage {
815
815
val encrypt : KeyUsage = " encrypt" .asInstanceOf [KeyUsage ]
@@ -824,7 +824,7 @@ object KeyUsage {
824
824
825
825
/** see [[http://www.w3.org/TR/WebCryptoAPI/#cryptokey-interface ¶13 CryptoKey interface ]] in W3C doc */
826
826
@ js.native
827
- trait KeyType extends js.Any
827
+ sealed trait KeyType extends js.Any
828
828
829
829
object KeyType {
830
830
val public : KeyType = " public" .asInstanceOf [KeyType ]
@@ -834,7 +834,7 @@ object KeyType {
834
834
835
835
/** see [[http://www.w3.org/TR/WebCryptoAPI/#dfn-KeyFormat ¶14.2 Data Types ]] in W3C spec */
836
836
@ js.native
837
- trait KeyFormat extends js.Any
837
+ sealed trait KeyFormat extends js.Any
838
838
839
839
object KeyFormat {
840
840
You can’t perform that action at this time.
0 commit comments