@gabortorma/mwm
Version:
Multi-repo Workspace Manager
18 lines (15 loc) • 375 B
TypeScript
import * as c12 from 'c12';
interface Owner {
name?: string;
token?: string;
}
interface OwnerWithId extends Owner {
id: string;
}
type Owners = Record<string, Owner>;
interface MWMConfig {
owners?: Owners;
}
declare const defineMWMConfig: c12.DefineConfig<MWMConfig, c12.ConfigLayerMeta>;
export { defineMWMConfig as d };
export type { OwnerWithId as O };