1 | import Result, { Message, ResultOptions } from './result.js'
|
2 | import { SourceMap } from './postcss.js'
|
3 | import Processor from './processor.js'
|
4 | import Warning from './warning.js'
|
5 | import Root from './root.js'
|
6 | import LazyResult from './lazy-result.js'
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 | export default class NoWorkResult implements LazyResult {
|
21 | then: Promise<Result>['then']
|
22 | catch: Promise<Result>['catch']
|
23 | finally: Promise<Result>['finally']
|
24 | constructor(processor: Processor, css: string, opts: ResultOptions)
|
25 | get [Symbol.toStringTag](): string
|
26 | get processor(): Processor
|
27 | get opts(): ResultOptions
|
28 | get css(): string
|
29 | get content(): string
|
30 | get map(): SourceMap
|
31 | get root(): Root
|
32 | get messages(): Message[]
|
33 | warnings(): Warning[]
|
34 | toString(): string
|
35 | sync(): Result
|
36 | async(): Promise<Result>
|
37 | }
|