Search


Search something to see results

TimeToken

Time token

interface TimeToken {
    loc?: Location;
    parent?: any;
    tokens?: Token[] | null;
    typ: TimeTokenType;
    unit: "ms" | "s";
    val: number | FractionToken;
}

Hierarchy (View Summary)

Index

Properties

loc?: Location

location info

parent?: any

parent node

tokens?: Token[] | null

prelude or selector tokens

token type

unit: "ms" | "s"
val: number | FractionToken