(amd-dependencies json-source-file)
Returns: readonly AmdDependency[]
**Returns:** `readonly AmdDependency[]`
(child-at json-source-file index)
(child-at json-source-file index source-file)
Parameters:
index
: number
source-file
: SourceFile | undefined
Returns: Node
**Parameters:** - `index`: `number` - `source-file`: `SourceFile | undefined` **Returns:** `Node`
(child-count json-source-file)
(child-count json-source-file source-file)
Parameters:
source-file
: SourceFile | undefined
Returns: number
**Parameters:** - `source-file`: `SourceFile | undefined` **Returns:** `number`
(children json-source-file)
(children json-source-file source-file)
Parameters:
source-file
: SourceFile | undefined
Returns: Node[]
**Parameters:** - `source-file`: `SourceFile | undefined` **Returns:** `Node[]`
(declaration-file? json-source-file)
Returns: boolean
**Returns:** `boolean`
(end-of-file-token json-source-file)
Returns: Token<SyntaxKind.EndOfFileToken>
**Returns:** `Token<SyntaxKind.EndOfFileToken>`
(first-token json-source-file)
(first-token json-source-file source-file)
Parameters:
source-file
: SourceFile | undefined
Returns: Node | undefined
**Parameters:** - `source-file`: `SourceFile | undefined` **Returns:** `Node | undefined`
(for-each-child json-source-file cb-node)
(for-each-child json-source-file cb-node cb-node-array)
Parameters:
cb-node
: (node: Node) => T | undefined
cb-node-array
: ((nodes: NodeArray<Node>) => T | undefined) | undefined
Returns: T | undefined
**Parameters:** - `cb-node`: `(node: Node) => T | undefined` - `cb-node-array`: `((nodes: NodeArray<Node>) => T | undefined) | undefined` **Returns:** `T | undefined`
(full-start json-source-file)
Returns: number
**Returns:** `number`
(full-text json-source-file)
(full-text json-source-file source-file)
Parameters:
source-file
: SourceFile | undefined
Returns: string
**Parameters:** - `source-file`: `SourceFile | undefined` **Returns:** `string`
(full-width json-source-file)
Returns: number
**Returns:** `number`
(get-text json-source-file)
(get-text json-source-file source-file)
Parameters:
source-file
: SourceFile | undefined
Returns: string
**Parameters:** - `source-file`: `SourceFile | undefined` **Returns:** `string`
(has-no-default-lib? json-source-file)
lib.d.ts should have a reference comment like
/// <reference no-default-lib="true"/>
If any other file has this comment, it signals not to include lib.d.ts because this containing file is intended to act as a default library.
Returns: boolean
lib.d.ts should have a reference comment like /// <reference no-default-lib="true"/> If any other file has this comment, it signals not to include lib.d.ts because this containing file is intended to act as a default library. **Returns:** `boolean`
(implied-node-format json-source-file)
When module
is Node16
or NodeNext
, this field controls whether the
source file in question is an ESNext-output-format file, or a CommonJS-output-format
module. This is derived by the module resolver as it looks up the file, since
it is derived from either the file extension of the module, or the containing
package.json
context, and affects both checking and emit.
It is public so that (pre)transformers can set this field,
since it switches the builtin node
module transform. Generally speaking, if unset,
the field is treated as though it is ModuleKind.CommonJS
.
Note that this field is only set by the module resolution process when
moduleResolution
is Node16
or NodeNext
, which is implied by the module
setting
of Node16
or NodeNext
, respectively, but may be overriden (eg, by a moduleResolution
of node
). If so, this field will be unset and source files will be considered to be
CommonJS-output-format by the node module transformer and type checker, regardless of extension or context.
Returns: ResolutionMode
When `module` is `Node16` or `NodeNext`, this field controls whether the source file in question is an ESNext-output-format file, or a CommonJS-output-format module. This is derived by the module resolver as it looks up the file, since it is derived from either the file extension of the module, or the containing `package.json` context, and affects both checking and emit. It is _public_ so that (pre)transformers can set this field, since it switches the builtin `node` module transform. Generally speaking, if unset, the field is treated as though it is `ModuleKind.CommonJS`. Note that this field is only set by the module resolution process when `moduleResolution` is `Node16` or `NodeNext`, which is implied by the `module` setting of `Node16` or `NodeNext`, respectively, but may be overriden (eg, by a `moduleResolution` of `node`). If so, this field will be unset and source files will be considered to be CommonJS-output-format by the node module transformer and type checker, regardless of extension or context. **Returns:** `ResolutionMode`
(kind json-source-file)
Returns: SyntaxKind.SourceFile
**Returns:** `SyntaxKind.SourceFile`
(language-variant json-source-file)
Returns: LanguageVariant
**Returns:** `LanguageVariant`
(language-version json-source-file)
Returns: ScriptTarget
**Returns:** `ScriptTarget`
(last-token json-source-file)
(last-token json-source-file source-file)
Parameters:
source-file
: SourceFile | undefined
Returns: Node | undefined
**Parameters:** - `source-file`: `SourceFile | undefined` **Returns:** `Node | undefined`
(leading-trivia-width json-source-file)
(leading-trivia-width json-source-file source-file)
Parameters:
source-file
: SourceFile | undefined
Returns: number
**Parameters:** - `source-file`: `SourceFile | undefined` **Returns:** `number`
(lib-reference-directives json-source-file)
Returns: readonly FileReference[]
**Returns:** `readonly FileReference[]`
(line-and-character-of-position json-source-file pos)
Parameters:
pos
: number
Returns: LineAndCharacter
**Parameters:** - `pos`: `number` **Returns:** `LineAndCharacter`
(line-end-of-position json-source-file pos)
Parameters:
pos
: number
Returns: number
**Parameters:** - `pos`: `number` **Returns:** `number`
(line-starts json-source-file)
Returns: readonly number[]
**Returns:** `readonly number[]`
(module-name json-source-file)
Returns: string | undefined
**Returns:** `string | undefined`
(position-of-line-and-character json-source-file line character)
Parameters:
line
: number
character
: number
Returns: number
**Parameters:** - `line`: `number` - `character`: `number` **Returns:** `number`
(referenced-files json-source-file)
Returns: readonly FileReference[]
**Returns:** `readonly FileReference[]`
(set-has-no-default-lib! json-source-file value)
lib.d.ts should have a reference comment like
/// <reference no-default-lib="true"/>
If any other file has this comment, it signals not to include lib.d.ts because this containing file is intended to act as a default library.
lib.d.ts should have a reference comment like /// <reference no-default-lib="true"/> If any other file has this comment, it signals not to include lib.d.ts because this containing file is intended to act as a default library.
(set-implied-node-format! json-source-file value)
When module
is Node16
or NodeNext
, this field controls whether the
source file in question is an ESNext-output-format file, or a CommonJS-output-format
module. This is derived by the module resolver as it looks up the file, since
it is derived from either the file extension of the module, or the containing
package.json
context, and affects both checking and emit.
It is public so that (pre)transformers can set this field,
since it switches the builtin node
module transform. Generally speaking, if unset,
the field is treated as though it is ModuleKind.CommonJS
.
Note that this field is only set by the module resolution process when
moduleResolution
is Node16
or NodeNext
, which is implied by the module
setting
of Node16
or NodeNext
, respectively, but may be overriden (eg, by a moduleResolution
of node
). If so, this field will be unset and source files will be considered to be
CommonJS-output-format by the node module transformer and type checker, regardless of extension or context.
When `module` is `Node16` or `NodeNext`, this field controls whether the source file in question is an ESNext-output-format file, or a CommonJS-output-format module. This is derived by the module resolver as it looks up the file, since it is derived from either the file extension of the module, or the containing `package.json` context, and affects both checking and emit. It is _public_ so that (pre)transformers can set this field, since it switches the builtin `node` module transform. Generally speaking, if unset, the field is treated as though it is `ModuleKind.CommonJS`. Note that this field is only set by the module resolution process when `moduleResolution` is `Node16` or `NodeNext`, which is implied by the `module` setting of `Node16` or `NodeNext`, respectively, but may be overriden (eg, by a `moduleResolution` of `node`). If so, this field will be unset and source files will be considered to be CommonJS-output-format by the node module transformer and type checker, regardless of extension or context.
(source-file json-source-file)
Returns: SourceFile
**Returns:** `SourceFile`
(start json-source-file)
(start json-source-file source-file)
(start json-source-file source-file include-js-doc-comment?)
Parameters:
source-file
: SourceFile | undefined
include-js-doc-comment?
: boolean | undefined
Returns: number
**Parameters:** - `source-file`: `SourceFile | undefined` - `include-js-doc-comment?`: `boolean | undefined` **Returns:** `number`
(statements json-source-file)
Returns: NodeArray<JsonObjectExpressionStatement>
**Returns:** `NodeArray<JsonObjectExpressionStatement>`
(type-reference-directives json-source-file)
Returns: readonly FileReference[]
**Returns:** `readonly FileReference[]`
(update json-source-file new-text text-change-range)
Parameters:
new-text
: string
text-change-range
: TextChangeRange
Returns: SourceFile
**Parameters:** - `new-text`: `string` - `text-change-range`: `TextChangeRange` **Returns:** `SourceFile`
(width json-source-file)
(width json-source-file source-file)
Parameters:
source-file
: SourceFileLike | undefined
Returns: number
**Parameters:** - `source-file`: `SourceFileLike | undefined` **Returns:** `number`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close