- Add .gitignore: exclude compiled binaries, build artifacts, and Helm values files containing real secrets (authentik, prometheus) - Add all Kubernetes deployment manifests (deployment/) - Add services source code: ha-sync, device-inventory, games-console, paperclip, parts-inventory - Add Ansible orchestration: playbooks, roles, inventory, cloud-init - Add hardware specs, execution plans, scripts, HOMELAB.md - Add skills/homelab/SKILL.md + skills/install.sh to preserve Copilot skill - Remove previously-tracked inventory-cli binary from git index Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
29 lines
1.3 KiB
TypeScript
29 lines
1.3 KiB
TypeScript
declare module "kareem" {
|
|
export default class Kareem {
|
|
static skipWrappedFunction(): SkipWrappedFunction;
|
|
static overwriteMiddlewareResult(): OverwriteMiddlewareResult;
|
|
|
|
pre(name: string | RegExp, fn: Function): this;
|
|
pre(name: string | RegExp, options: Record<string, any>, fn: Function, error?: any, unshift?: boolean): this;
|
|
post(name: string | RegExp, fn: Function): this;
|
|
post(name: string | RegExp, options: Record<string, any>, fn: Function, unshift?: boolean): this;
|
|
|
|
clone(): Kareem;
|
|
merge(other: Kareem, clone?: boolean): this;
|
|
|
|
createWrapper(name: string, fn: Function, context?: any, options?: Record<string, any>): Function;
|
|
createWrapperSync(name: string, fn: Function): Function;
|
|
hasHooks(name: string): boolean;
|
|
filter(fn: Function): Kareem;
|
|
|
|
wrap(name: string, fn: Function, context: any, args: any[], options?: Record<string, any>): Function;
|
|
|
|
execPostSync(name: string, context: any, args: any[]): any;
|
|
execPost(name: string, context: any, args: any[], options?: Record<string, any>, callback?: Function): void;
|
|
execPreSync(name: string, context: any, args: any[]): any;
|
|
execPre(name: string, context: any, args: any[], callback?: Function): void;
|
|
}
|
|
|
|
class SkipWrappedFunction {}
|
|
class OverwriteMiddlewareResult {}
|
|
}
|