Skip to content
Snippets Groups Projects
Select Git revision
  • master default
  • responsiveForMobile
  • fixes/warningFix
  • fixes/StylingAndFixedHeader
  • fixes/newConnectionForeachQueryIssueFixed
  • readmeFileUpdate
  • deployment_test
  • localTesting
  • trym
  • thomas
  • ServerClientTilkoblingFix
  • AutoDeploying
  • hidingCredential
  • SingleFunctionForFetchingAnyQuery
  • databaseConnection
15 results

Films.ts

Blame
  • Forked from an inaccessible project.
    Films.ts 188 B
    export interface Films{
        id?: string;
        title: string;
        year: string;
        actors: string;
        description: string;
        genre: string;
        thumbnail: string;
        created_at: Date;
    }