Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/emmet/src/typings/emmetio__css-parser.d.ts
4774 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
declare module '@emmetio/css-parser' {
7
import { BufferStream, Stylesheet } from 'EmmetNode';
8
import { Stylesheet as FlatStylesheet } from 'EmmetFlatNode';
9
10
function parseStylesheet(stream: BufferStream): Stylesheet;
11
function parseStylesheet(stream: string): FlatStylesheet;
12
13
export default parseStylesheet;
14
}
15
16
17