@open-audio-stack/core
Version:
Open-source audio plugin management software
12 lines (11 loc) • 313 B
TypeScript
import { RegistryType } from '../types/Registry.js';
export interface Arguments {
appDir: string;
operation: string;
type: RegistryType;
id: string;
version?: string;
log?: boolean;
}
export declare function adminArguments(): Arguments;
export declare function adminInit(): Promise<void>;