12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import Container, { ContainerProps } from './container.js'
- import Document from './document.js'
- import { ProcessOptions } from './postcss.js'
- import Result from './result.js'
- interface RootRaws extends Record<string, any> {
-
- after?: string
-
- codeBefore?: string
-
- codeAfter?: string
-
- semicolon?: boolean
- }
- export interface RootProps extends ContainerProps {
-
- raws?: RootRaws
- }
- export default class Root extends Container {
- type: 'root'
- parent: Document | undefined
- raws: RootRaws
-
- toResult(options?: ProcessOptions): Result
- constructor(defaults?: RootProps)
- assign(overrides: object | RootProps): this
- }
|