rawx
Version:
process daemon with utilities
12 lines (11 loc) • 380 B
TypeScript
export interface Ops_Module {
Ops: Ops_Gen;
some_colors: Some_Colors;
no_colors: Color_Targets;
}
import { O, Ops_Gen, Color_Targets, Log, Wait } from "./ops";
export type { O, Log, Wait };
import { Some_Colors } from "./some_colors";
export type { Color_Targets, Some_Colors };
export type { Conf, Ops_Gen } from "./ops";
export declare type str = string;