File

projects/web-mev/src/app/shared/models/file-type.ts

Description

File types

These types are restricted to a set of common file formats.

Index

Properties

Constructor

constructor(options: literal type)
Parameters :
Name Type Optional
options literal type No

Properties

resource_type_description
Type : string
resource_type_key
Type : string
resource_type_title
Type : string
export class FileType {
  resource_type_key: string;
  resource_type_title: string;
  resource_type_description: string;

  constructor(
    options: {
      resource_type_key?: string;
      resource_type_title?: string;
      resource_type_description?: string;
    } = {}
  ) {
    this.resource_type_key = options.resource_type_key;
    this.resource_type_title = options.resource_type_title;
    this.resource_type_description = options.resource_type_description;
  }
}

result-matching ""

    No results matching ""