test-mixer
Version:
Test helper to generate function opts object variations
15 lines (13 loc) • 309 B
TypeScript
declare const version: string;
type PlainObject = {
[name: string]: any;
};
type PlainObjectOfBool = {
[name: string]: boolean;
};
declare function mixer(
ref?: PlainObject,
defaultsObj?: PlainObject,
): PlainObjectOfBool[];
export { mixer, version };
export type { PlainObject, PlainObjectOfBool };