Sha256: cae5ea0d349cdee7d11fc9a627aa5e55a59820cded18f17bbcda5b9e8a998009
Contents?: true
Size: 539 Bytes
Versions: 13
Compression:
Stored size: 539 Bytes
Contents
import LazyResult from './lazy-result'; import postcss from './postcss'; import Result from './result'; import Root from './root'; /** * Parses source CSS. * @param css The CSS to parse. * @param options * @returns {} A new Root node, which contains the source CSS nodes. */ declare function parse(css: string | { toString(): string; } | LazyResult | Result, options?: { from?: string; map?: postcss.SourceMapOptions; }): Root; declare module parse { var parse: postcss.Syntax | postcss.Parse; } export default parse;
Version data entries
13 entries across 4 versions & 2 rubygems