TestProfile.ts
1 import { IProfile } from 'ipmc-interfaces'; 2 3 export const TestProfile: IProfile = { 4 id: 'test', 5 libraries: [ 6 { 7 id: 'test', 8 name: 'movies', 9 type: 'movie', 10 upstream: 'mov.upstream' 11 }, 12 ], 13 name: 'test', 14 type: 'remote' 15 };