constants: { 
    array: string[]; 
    nodes: string[]; 
    regex: { 
        base64: RegExp; 
        date: RegExp; 
        datetime: RegExp; 
        decimal: RegExp; 
        int: RegExp; 
        ip: RegExp; 
        md5: RegExp; 
        price: RegExp; 
        time: RegExp; 
        uuid: RegExp; 
        uuid4: RegExp; 
    }; 
    special: { 
        key: RegExp; 
        name: RegExp; 
        reserved: string[]; 
        syntax: string; 
    }; 
    standard: RegExp; 
} = ...
Type declaration
array: string[]
nodes: string[]
regex: { 
    base64: RegExp; 
    date: RegExp; 
    datetime: RegExp; 
    decimal: RegExp; 
    int: RegExp; 
    ip: RegExp; 
    md5: RegExp; 
    price: RegExp; 
    time: RegExp; 
    uuid: RegExp; 
    uuid4: RegExp; 
}
base64: RegExp
date: RegExp
datetime: RegExp
decimal: RegExp
int: RegExp
ip: RegExp
md5: RegExp
price: RegExp
time: RegExp
uuid: RegExp
uuid4: RegExp
special: { 
    key: RegExp; 
    name: RegExp; 
    reserved: string[]; 
    syntax: string; 
}
key: RegExp
name: RegExp
reserved: string[]
syntax: string
standard: RegExp