ngx-drupal7-services
Version:
# Angular 2+/Ionic 2+ Drupal 7 Services #### Typescript angular module for [Drupal Services 3.x](https://www.drupal.org/project/services)
16 lines (15 loc) • 383 B
TypeScript
import { Entity, CreatedEntity } from './entity';
export interface FileEntity extends Entity {
file: string;
filename: string;
filemime?: string;
filesize?: number;
image_styles?: string[];
target_uri?: string;
uri?: string;
uri_full?: string;
fid?: number;
}
export interface CreatedFile extends CreatedEntity {
fid: number;
}