@ionic/cli
Version:
A tool for creating and developing Ionic Framework mobile apps.
13 lines (12 loc) • 511 B
TypeScript
import { IClient, ResourceClientLoad, SecurityProfile } from '../definitions';
import { ResourceClient } from './http';
export interface SecurityClientDeps {
readonly client: IClient;
readonly token: string;
}
export declare class SecurityClient extends ResourceClient implements ResourceClientLoad<SecurityProfile> {
protected readonly client: IClient;
protected readonly token: string;
constructor({ client, token }: SecurityClientDeps);
load(tag: string): Promise<SecurityProfile>;
}