hosty
Version:
A code based opinionated way to self-host and manage web apps.
16 lines • 502 B
TypeScript
import { CommonTaskAttrs, Tasks } from '../ansible/types.js';
export declare function block(name: string, attrs?: CommonTaskAttrs, tasks?: Tasks): {
add: (...tasks: Tasks) => number;
get: () => {
block: Tasks;
become?: boolean;
register?: string;
when?: string;
changed_when?: boolean;
ignore_errors?: boolean;
notify?: string;
with_fileglob?: string | string[];
name: string;
};
};
//# sourceMappingURL=block.d.ts.map