Node
ts
type Node = object & Partial<{
access: Access;
alias: string;
author: string[];
content: string;
deprecated: string;
description: string;
example: Example[];
group: string[];
ignore: string[];
link: Link[];
output: string;
parameter: Parameter[];
property: Property[];
require: Require[];
return: Return;
see: Node[];
since: Since[];
throw: string[];
todo: string[];
type: string;
usedBy: UsedBy[];
}>;Defined in: type.ts:320
Represensts a SassDoc node
Type Declaration
commentRange
ts
commentRange: Range;Range of the SassDoc documentation comment
Since
1.0.0
Author
Simon Kovtyk
context
ts
context: Context;Carrying simple information of the node
Since
1.0.0
Author
Simon Kovtyk
file
ts
file: File;File, the node is defined in
Since
1.0.0
Author
Simon Kovtyk
Since
1.0.0
Author
Simon Kovtyk