Avoid formatting `REAMDE.md` with an undesired newline.

This commit is contained in:
Lucas Garron 2022-07-18 11:44:43 -07:00
Родитель bd12be37eb
Коммит e31db06b37
2 изменённых файлов: 6 добавлений и 3 удалений

5
.vscode/settings.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,5 @@
{
"[markdown]": {
"editor.formatOnSave": false
}
}

Просмотреть файл

@ -53,9 +53,7 @@ function parseCreationOptionsFromJSON(json: JSON): CredentialCreationOptions;
function parseRequestOptionsFromJSON(json: JSON): CredentialRequestOptions; function parseRequestOptionsFromJSON(json: JSON): CredentialRequestOptions;
// You can call `.toJSON()` on the result or pass directly to `JSON.stringify()`. // You can call `.toJSON()` on the result or pass directly to `JSON.stringify()`.
function create( function create(options: CredentialCreationOptions): Promise<PublicKeyCredential>;
options: CredentialCreationOptions,
): Promise<PublicKeyCredential>;
// You can call `.toJSON()` on the result or pass directly to `JSON.stringify()`. // You can call `.toJSON()` on the result or pass directly to `JSON.stringify()`.
function get(options: CredentialRequestOptions): Promise<PublicKeyCredential>; function get(options: CredentialRequestOptions): Promise<PublicKeyCredential>;
``` ```