mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
14 lines
328 B
TypeScript
Executable file
14 lines
328 B
TypeScript
Executable file
/* eslint-disable @typescript-eslint/naming-convention */
|
|
/* eslint-disable @typescript-eslint/ban-types */
|
|
declare module '*.graphql' {
|
|
import { DocumentNode } from 'graphql'
|
|
const schema: DocumentNode
|
|
|
|
export = schema
|
|
}
|
|
|
|
declare module 'voca/slugify' {
|
|
function slugify(subject?: string): string
|
|
|
|
export = slugify
|
|
}
|