wildstar
    Preparing search index...

    Variable defaultConst

    default: {
        join: (...paths: string[]) => string;
        leaf: (path: string) => string;
        match: (
            source: string,
            pattern: string,
            charCompare?: CharCompare,
        ) => null | string[];
        matches: (
            source: string,
            pattern: string,
            charCompare?: CharCompare,
        ) => boolean;
        normalize: (source: string) => string;
        parent: (path: string) => string;
        relative: (
            base: string,
            target: string,
            charCompare?: CharCompare,
        ) => null | string;
        remap: (
            source: string,
            pattern: string,
            replacement: string,
            charCompare?: CharCompare,
        ) => null | string;
        replace: (placeholder: string, captures: string[]) => string;
        root: (source: string) => string;
    } = ...

    Type Declaration

    • join: (...paths: string[]) => string
    • leaf: (path: string) => string
    • match: (source: string, pattern: string, charCompare?: CharCompare) => null | string[]
    • matches: (source: string, pattern: string, charCompare?: CharCompare) => boolean
    • normalize: (source: string) => string
    • parent: (path: string) => string
    • relative: (base: string, target: string, charCompare?: CharCompare) => null | string
    • remap: (
          source: string,
          pattern: string,
          replacement: string,
          charCompare?: CharCompare,
      ) => null | string
    • replace: (placeholder: string, captures: string[]) => string
    • root: (source: string) => string