/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/warning.d.ts (2994B)
import { RangePosition } from './css-syntax-error.js' import Node from './node.js' declare namespace Warning { export interface WarningOptions { /** * End position, exclusive, in CSS node string that caused the warning. */ end?: RangePosition /** * End index, exclusive, in CSS node string that caused the warning. */ endIndex?: number /** * Start index, inclusive, in CSS node string that caused the warning. */ index?: number /** * CSS node that caused the warning. */ node?: Node /** * Name of the plugin that created this warning. `Result#warn` fills * this property automatically. */ plugin?: string /** * Start position, inclusive, in CSS node string that caused the warning. */ start?: RangePosition /** * Word in CSS source that caused the warning. */ word?: string } // eslint-disable-next-line @typescript-eslint/no-use-before-define export { Warning_ as default } } /** * Represents a plugin’s warning. It can be created using `Node#warn`. * * ```js * if (decl.important) { * decl.warn(result, 'Avoid !important', { word: '!important' }) * } * ``` */ declare class Warning_ { /** * Column for inclusive start position in the input file with this warning’s source. * * ```js * warning.column //=> 6 * ``` */ column: number /** * Column for exclusive end position in the input file with this warning’s source. * * ```js * warning.endColumn //=> 4 * ``` */ endColumn?: number /** * Line for exclusive end position in the input file with this warning’s source. * * ```js * warning.endLine //=> 6 * ``` */ endLine?: number /** * Line for inclusive start position in the input file with this warning’s source. * * ```js * warning.line //=> 5 * ``` */ line: number /** * Contains the CSS node that caused the warning. * * ```js * warning.node.toString() //=> 'color: white !important' * ``` */ node: Node /** * The name of the plugin that created this warning. * When you call `Node#warn` it will fill this property automatically. * * ```js * warning.plugin //=> 'postcss-important' * ``` */ plugin: string /** * The warning message. * * ```js * warning.text //=> 'Try to avoid !important' * ``` */ text: string /** * Type to filter warnings from `Result#messages`. * Always equal to `"warning"`. */ type: 'warning' /** * @param text Warning message. * @param opts Warning options. */ constructor(text: string, opts?: Warning.WarningOptions) /** * Returns a warning position and message. * * ```js * warning.toString() //=> 'postcss-lint:a.css:10:14: Avoid !important' * ``` * * @return Warning position and message. */ toString(): string } declare class Warning extends Warning_ {} export = Warning