@webilix/ngx-helper-m3
Version:
Helper library for Angular and Material 3
16 lines (15 loc) • 372 B
TypeScript
export interface INgxHelperHttpDownloadConfig {
readonly method: 'GET' | 'POST' | 'PUT' | 'PATCH';
readonly header: {
[key: string]: any;
};
}
export interface INgxHelperHttpUploadConfig {
readonly method: 'POST' | 'PUT' | 'PATCH';
readonly header: {
[key: string]: any;
};
readonly body: {
[key: string]: any;
};
}