1 | import Container, { ContainerProps } from './container.js'
|
2 | import { ProcessOptions } from './postcss.js'
|
3 | import Result from './result.js'
|
4 | import Root from './root.js'
|
5 |
|
6 | declare namespace Document {
|
7 | export interface DocumentProps extends ContainerProps {
|
8 | nodes?: Root[]
|
9 |
|
10 | |
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 | raws?: Record<string, any>
|
17 | }
|
18 |
|
19 |
|
20 | export { Document_ as default }
|
21 | }
|
22 |
|
23 |
|
24 |
|
25 |
|
26 |
|
27 |
|
28 |
|
29 |
|
30 |
|
31 |
|
32 |
|
33 |
|
34 |
|
35 |
|
36 |
|
37 | declare class Document_ extends Container<Root> {
|
38 | parent: undefined
|
39 | type: 'document'
|
40 |
|
41 | constructor(defaults?: Document.DocumentProps)
|
42 |
|
43 | assign(overrides: Document.DocumentProps | object): this
|
44 | clone(overrides?: Partial<Document.DocumentProps>): Document
|
45 | cloneAfter(overrides?: Partial<Document.DocumentProps>): Document
|
46 | cloneBefore(overrides?: Partial<Document.DocumentProps>): Document
|
47 |
|
48 | /**
|
49 | * Returns a `Result` instance representing the document’s CSS roots.
|
50 | *
|
51 | * ```js
|
52 | * const root1 = postcss.parse(css1, { from: 'a.css' })
|
53 | * const root2 = postcss.parse(css2, { from: 'b.css' })
|
54 | * const document = postcss.document()
|
55 | * document.append(root1)
|
56 | * document.append(root2)
|
57 | * const result = document.toResult({ to: 'all.css', map: true })
|
58 | * ```
|
59 | *
|
60 | * @param opts Options.
|
61 | * @return Result with current document’s CSS.
|
62 | */
|
63 | toResult(options?: ProcessOptions): Result
|
64 | }
|
65 |
|
66 | declare class Document extends Document_ {}
|
67 |
|
68 | export = Document
|