1 | import { StateOrName } from './interface';
|
2 | import { StateObject } from './stateObject';
|
3 | export declare class StateMatcher {
|
4 | private _states;
|
5 | constructor(_states: {
|
6 | [key: string]: StateObject;
|
7 | });
|
8 | isRelative(stateName: string): boolean;
|
9 | find(stateOrName: StateOrName, base?: StateOrName, matchGlob?: boolean): StateObject;
|
10 | resolvePath(name: string, base: StateOrName): string;
|
11 | }
|