UNPKG

@stencila/schema

Version:

Stencila schema and other specifications

22 lines (19 loc) 392 B
import { Collection } from '../types' import * as article from './article' import * as datatable from './datatable' export const minimal: Collection = { type: 'Collection', parts: [] } export const simple: Collection = { type: 'Collection', editors: [ { type: 'Person' } ], publisher: { type: 'Organization' }, parts: [article.simple, datatable.minimal] }