Skip to content

Interface: CssSource

Defined in: packages/core/src/model.ts:205

Where a record was authored, for source links. Positions are 1-based, matching PostCSS.

Properties

column?

ts
optional column?: number;

Defined in: packages/core/src/model.ts:211

The 1-based column of the record's opening doc comment.


file?

ts
optional file?: string;

Defined in: packages/core/src/model.ts:207

The file the record was parsed from, when ParseOptions.fileName was supplied.


line?

ts
optional line?: number;

Defined in: packages/core/src/model.ts:209

The 1-based line of the record's opening doc comment.

Released under the MIT License