Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
25 lines
777 B
Plaintext
25 lines
777 B
Plaintext
/**
|
|
* Copyright (c) 2017, Dirk-Jan Rutten
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
*/
|
|
import { GraphQLScalarType } from 'graphql';
|
|
import type { GraphQLScalarTypeConfig } from 'graphql';
|
|
export declare const GraphQLDateTimeConfig: GraphQLScalarTypeConfig<Date, Date>;
|
|
/**
|
|
* An RFC 3339 compliant date-time scalar.
|
|
*
|
|
* Input:
|
|
* This scalar takes an RFC 3339 date-time string as input and
|
|
* parses it to a javascript Date.
|
|
*
|
|
* Output:
|
|
* This scalar serializes javascript Dates,
|
|
* RFC 3339 date-time strings and unix timestamps
|
|
* to RFC 3339 UTC date-time strings.
|
|
*/
|
|
export declare const GraphQLDateTime: GraphQLScalarType<Date, Date>;
|