8 lines
405 B
TypeScript
8 lines
405 B
TypeScript
import {artistType} from './artist-type'
|
|
import {blogType} from './blog-type'
|
|
import {composerType} from './composer-type'
|
|
import {concertType} from './concert-type'
|
|
import {workType} from './work-type'
|
|
import {releaseType} from './release-type'
|
|
import {settingsType} from './settings-type'
|
|
export const schemaTypes = [artistType, blogType, composerType, concertType, workType, releaseType, settingsType]
|