aws-iam-policy-tool
Version:
AWS IAM role/policy management cli tool
10 lines (9 loc) • 331 B
TypeScript
export interface Result {
status: string;
message: string;
target?: string;
diff?: any;
}
export declare function OK(message: string, target?: any, diff?: any): Result;
export declare function NG(message: string, target: any, diff?: any): Result;
export declare function Skip(message: string, target: any): Result;