@microsoft/kiota
Version:
npm package exposing Kiota CLI functionality to TypeScript
10 lines (9 loc) • 452 B
TypeScript
export interface Package {
platformId: string;
sha256: string;
}
export declare function ensureKiotaIsPresent(): Promise<void>;
export declare function ensureKiotaIsPresentInPath(installPath: string, runtimeDependencies: Package[], currentPlatform: string): Promise<void>;
export declare function getKiotaPath(): string;
export declare function getRuntimeDependenciesPackages(): Package[];
export declare function getCurrentPlatform(): string;