Interface ScriptMetadata

Script metadata

interface ScriptMetadata {
    content: string;
    includes: ScriptMetadata[];
    name: string;
    numberOfKeys?: number;
    path: string;
    token: string;
}

Properties

content: string

The raw script content

includes: ScriptMetadata[]

Metadata on the scripts that this script includes

name: string

Name of the script

numberOfKeys?: number
path: string

The path to the script. For includes, this is the normalized path, whereas it may not be normalized for the top-level parent

token: string

A hash of the normalized path for easy replacement in the parent

Generated using TypeDoc