These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
17 lines
578 B
Text
17 lines
578 B
Text
[Exposed=Window, SecureContext]
|
|
interface CredentialsContainer {
|
|
Promise<Credential?> get(optional CredentialRequestOptions options = {});
|
|
Promise<undefined> store(Credential credential);
|
|
Promise<Credential?> create(optional CredentialCreationOptions options = {});
|
|
Promise<undefined> preventSilentAccess();
|
|
};
|
|
|
|
dictionary CredentialRequestOptions {
|
|
CredentialMediationRequirement mediation = "optional";
|
|
AbortSignal signal;
|
|
};
|
|
|
|
dictionary CredentialCreationOptions {
|
|
CredentialMediationRequirement mediation = "optional";
|
|
AbortSignal signal;
|
|
};
|