⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.45
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
postcss
/
lib
/
View File Name :
no-work-result.d.ts
import Result, { Message, ResultOptions } from './result.js' import { SourceMap } from './postcss.js' import Processor from './processor.js' import Warning from './warning.js' import Root from './root.js' import LazyResult from './lazy-result.js' declare namespace NoWorkResult { // eslint-disable-next-line @typescript-eslint/no-use-before-define export { NoWorkResult_ as default } } /** * A Promise proxy for the result of PostCSS transformations. * This lazy result instance doesn't parse css unless `NoWorkResult#root` or `Result#root` * are accessed. See the example below for details. * A `NoWork` instance is returned by `Processor#process` ONLY when no plugins defined. * * ```js * const noWorkResult = postcss().process(css) // No plugins are defined. * // CSS is not parsed * let root = noWorkResult.root // now css is parsed because we accessed the root * ``` */ declare class NoWorkResult_ implements LazyResult { then: Promise<Result>['then'] catch: Promise<Result>['catch'] finally: Promise<Result>['finally'] constructor(processor: Processor, css: string, opts: ResultOptions) get [Symbol.toStringTag](): string get processor(): Processor get opts(): ResultOptions get css(): string get content(): string get map(): SourceMap get root(): Root get messages(): Message[] warnings(): Warning[] toString(): string sync(): Result async(): Promise<Result> } declare class NoWorkResult extends NoWorkResult_ {} export = NoWorkResult