UNPKG

@enonic/mock-xp

Version:

Mock Enonic XP API JavaScript Library

16 lines (15 loc) 453 B
import type { ResourceKey as ResourceKeyInterface } from '@enonic-types/core'; export declare class ResourceKey implements ResourceKeyInterface { private applicationKey; private path; constructor({ applicationKey, path, }: { applicationKey: string; path: string; }); getApplicationKey(): string; getPath(): string; getUri(): string; isRoot(): boolean; getName(): string; getExtension(): string; }