UNPKG

aws-iam-policy-tool

Version:
10 lines (9 loc) 331 B
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;