/** * Match the given simple-* glob against the given text. * This _does not_ use "filesystem glob" logic. That is, a `*` here * will match anything, including `/`. Similarly, there is no `?` * operator. */ export declare const simpleStarMatch: (glob: string, text: string) => boolean; /** * @internal */ interface StarGlobText { at: number; type: "text"; value: string; } /** * @internal */ interface StarGlobStar { at: number; type: "*"; value?: never; } export type StarGlobPart = StarGlobText | StarGlobStar; /** * Parse a simple-* glob into its constituent tokens. */ export declare const starMatchParts: (glob: string) => StarGlobPart[]; export {}; //# sourceMappingURL=glob.d.ts.map