Monaco: fix typo in types.ts (#36412)

guarentee -> guarantee
This commit is contained in:
Ikko Ashimine
2021-07-05 07:58:33 +09:00
committed by GitHub
parent 354789edc9
commit b13101fd00

View File

@@ -1,4 +1,4 @@
// We use `import type` to guarentee it'll be erased from the JS and it doesnt accidently bundle monaco
// We use `import type` to guarantee it'll be erased from the JS and it doesnt accidently bundle monaco
import type * as monacoType from 'monaco-editor/esm/vs/editor/editor.api';
export type CodeEditorChangeHandler = (value: string) => void;