foxes.cool
Version:
An API for all your fox image needs
12 lines (10 loc) • 375 B
TypeScript
export interface Object {
width?: number;
height?: number;
aspect_ratio?: string;
}
export declare function fox(object: Object): string;
export declare function curious(object: Object): string;
export declare function happy(object: Object): string;
export declare function scary(object: Object): string;
export declare function sleeping(object: Object): string;