mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-08 14:32:50 +00:00
14 lines
312 B
TypeScript
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',
|
|
};
|