mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 18:19:12 +01:00
Add typings for emmet #59803
This commit is contained in:
13
extensions/emmet/src/typings/emmetio__css-parser.d.ts
vendored
Normal file
13
extensions/emmet/src/typings/emmetio__css-parser.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
declare module '@emmetio/css-parser' {
|
||||
import { BufferStream, Stylesheet } from 'EmmetNode';
|
||||
|
||||
function parseStylesheet(stream: BufferStream): Stylesheet;
|
||||
|
||||
export default parseStylesheet;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user