9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
import { StyleParseError } from './error.mjs';
|
|
import { CSSToken } from './types.mjs';
|
|
|
|
/**
|
|
* Get tokens
|
|
*/
|
|
declare function getTokens(css: string): CSSToken[] | StyleParseError;
|
|
|
|
export { getTokens };
|