mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
351 B
TypeScript
12 lines
351 B
TypeScript
// Type definitions for graphql-date 1.0
|
|
// Project: https://github.com/tjmehta/graphql-date
|
|
// Definitions by: Eric Naeseth <https://github.com/enaeseth>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.6
|
|
|
|
import { GraphQLScalarType } from 'graphql';
|
|
|
|
declare const date: GraphQLScalarType;
|
|
|
|
export = date;
|