/home/techb158/balavpn.abdallabala.com/node_modules/postcss/lib
NameSizeModeActions
at-rule.d.ts28170666editdlrm
at-rule.js4710666editdlrm
comment.d.ts17270666editdlrm
comment.js2030666editdlrm
container.d.ts131570666editdlrm
container.js105020666editdlrm
css-syntax-error.d.ts65030666editdlrm
css-syntax-error.js25240666editdlrm
declaration.d.ts37870666editdlrm
declaration.js4950666editdlrm
document.d.ts19410666editdlrm
document.js6540666editdlrm
fromJSON.d.ts1620666editdlrm
fromJSON.js15060666editdlrm
input.d.ts44240666editdlrm
input.js61900666editdlrm
lazy-result.d.ts50070666editdlrm
lazy-result.js135620666editdlrm
list.d.ts14530666editdlrm
list.js12270666editdlrm
map-generator.js95750666editdlrm
no-work-result.d.ts15730666editdlrm
no-work-result.js25510666editdlrm
node.d.ts138510666editdlrm
node.js87330666editdlrm
parse.d.ts1350666editdlrm
parse.js11470666editdlrm
parser.js147570666editdlrm
postcss.d.mts10530666editdlrm
postcss.d.ts112430666editdlrm
postcss.js28980666editdlrm
postcss.mjs9800666editdlrm
previous-map.d.ts18270666editdlrm
previous-map.js39230666editdlrm
processor.d.ts34060666editdlrm
processor.js18100666editdlrm
result.d.ts44170666editdlrm
result.js7450666editdlrm
root.d.ts22790666editdlrm
root.js12390666editdlrm
rule.d.ts26820666editdlrm
rule.js5690666editdlrm
stringifier.d.ts14110666editdlrm
stringifier.js82200666editdlrm
stringify.d.ts1650666editdlrm
stringify.js2130666editdlrm
symbols.js910666editdlrm
terminal-highlight.js13990666editdlrm
tokenize.js65380666editdlrm
warn-once.js2560666editdlrm
warning.d.ts29940666editdlrm
warning.js7390666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/postcss/lib/result.d.ts (4417B)
import { Document, Node, Plugin, ProcessOptions, Root, SourceMap, TransformCallback, Warning, WarningOptions } from './postcss.js' import Processor from './processor.js' declare namespace Result { export interface Message { [others: string]: any /** * Source PostCSS plugin name. */ plugin?: string /** * Message type. */ type: string } export interface ResultOptions extends ProcessOptions { /** * The CSS node that was the source of the warning. */ node?: Node /** * Name of plugin that created this warning. `Result#warn` will fill it * automatically with `Plugin#postcssPlugin` value. */ plugin?: string } // eslint-disable-next-line @typescript-eslint/no-use-before-define export { Result_ as default } } /** * Provides the result of the PostCSS transformations. * * A Result instance is returned by `LazyResult#then` * or `Root#toResult` methods. * * ```js * postcss([autoprefixer]).process(css).then(result => { * console.log(result.css) * }) * ``` * * ```js * const result2 = postcss.parse(css).toResult() * ``` */ declare class Result_ { /** * A CSS string representing of `Result#root`. * * ```js * postcss.parse('a{}').toResult().css //=> "a{}" * ``` */ css: string /** * Last runned PostCSS plugin. */ lastPlugin: Plugin | TransformCallback /** * An instance of `SourceMapGenerator` class from the `source-map` library, * representing changes to the `Result#root` instance. * * ```js * result.map.toJSON() //=> { version: 3, file: 'a.css', … } * ``` * * ```js * if (result.map) { * fs.writeFileSync(result.opts.to + '.map', result.map.toString()) * } * ``` */ map: SourceMap /** * Contains messages from plugins (e.g., warnings or custom messages). * Each message should have type and plugin properties. * * ```js * AtRule: { * import: (atRule, { result }) { * const importedFile = parseImport(atRule) * result.messages.push({ * type: 'dependency', * plugin: 'postcss-import', * file: importedFile, * parent: result.opts.from * }) * } * } * ``` */ messages: Result.Message[] /** * Options from the `Processor#process` or `Root#toResult` call * that produced this Result instance.] * * ```js * root.toResult(opts).opts === opts * ``` */ opts: Result.ResultOptions /** * The Processor instance used for this transformation. * * ```js * for (const plugin of result.processor.plugins) { * if (plugin.postcssPlugin === 'postcss-bad') { * throw 'postcss-good is incompatible with postcss-bad' * } * }) * ``` */ processor: Processor /** * Root node after all transformations. * * ```js * root.toResult().root === root * ``` */ root: RootNode /** * @param processor Processor used for this transformation. * @param root Root node after all transformations. * @param opts Options from the `Processor#process` or `Root#toResult`. */ constructor(processor: Processor, root: RootNode, opts: Result.ResultOptions) /** * Returns for `Result#css` content. * * ```js * result + '' === result.css * ``` * * @return String representing of `Result#root`. */ toString(): string /** * Creates an instance of `Warning` and adds it to `Result#messages`. * * ```js * if (decl.important) { * result.warn('Avoid !important', { node: decl, word: '!important' }) * } * ``` * * @param text Warning message. * @param opts Warning options. * @return Created warning. */ warn(message: string, options?: WarningOptions): Warning /** * Returns warnings from plugins. Filters `Warning` instances * from `Result#messages`. * * ```js * result.warnings().forEach(warn => { * console.warn(warn.toString()) * }) * ``` * * @return Warnings from plugins. */ warnings(): Warning[] /** * An alias for the `Result#css` property. * Use it with syntaxes that generate non-CSS output. * * ```js * result.css === result.content * ``` */ get content(): string } declare class Result extends Result_ {} export = Result