Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/emmet/src/typings/emmetio__html-matcher.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/html-matcher' {
7
import { BufferStream, HtmlNode } from 'EmmetNode';
8
import { HtmlNode as HtmlFlatNode } from 'EmmetFlatNode';
9
10
function parse(stream: BufferStream): HtmlNode;
11
function parse(stream: string): HtmlFlatNode;
12
13
export default parse;
14
}
15
16
17