@zeplin/sdk
Version:
Zeplin API client for JavaScript
50 lines (49 loc) • 945 B
TypeScript
/**
* Zeplin API
* Access your resources in Zeplin
*
* Contact: support@zeplin.io
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export declare const transformPingEventToJSON: (value: PingEvent) => any;
export declare const transformJSONToPingEvent: (value: any) => PingEvent;
/**
*
* @export
* @interface PingEvent
*/
export interface PingEvent {
/**
*
* @type {string}
* @memberof PingEvent
*/
event: 'ping';
/**
*
* @type {string}
* @memberof PingEvent
*/
action: 'ping';
/**
*
* @type {number}
* @memberof PingEvent
*/
timestamp: number;
/**
*
* @type {object}
* @memberof PingEvent
*/
resource: object;
/**
*
* @type {object}
* @memberof PingEvent
*/
context: object;
}