Add typings for emmet #59803

This commit is contained in:
Ramya Achutha Rao
2018-10-03 12:55:55 -07:00
parent ffda5ba4f4
commit 26365c8957
5 changed files with 65 additions and 12 deletions

View 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;
}