Files
openstapps/packages/core/test/dummy/not-a-dish.ts
2023-05-31 14:04:05 +02:00

14 lines
312 B
TypeScript

import {SCThingOriginType} from '../../src/index.js';
import {SCDish} from '../../lib/index.js';
export const notADish: Omit<SCDish, 'type'> & {type: 'foobar'} = {
categories: ['appetizer'],
name: 'foo',
origin: {
created: '',
type: SCThingOriginType.User,
},
type: 'foobar',
uid: 'bar',
};