@zeplin/sdk
Version:
Zeplin API client for JavaScript
21 lines (20 loc) • 919 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.
*/
import { WorkspaceNotificationCreatedEvent } from './workspace-notification-created-event';
import { WorkspaceNotificationUpdatedEvent } from './workspace-notification-updated-event';
export declare const transformJSONToWorkspaceNotificationEvent: (value: any) => WorkspaceNotificationEvent;
export declare const transformWorkspaceNotificationEventToJSON: (value: WorkspaceNotificationEvent) => any;
/**
* @type WorkspaceNotificationEvent
* This event is used to notify webhooks about changes related to user\'s notifications.
* @export
*/
export declare type WorkspaceNotificationEvent = WorkspaceNotificationCreatedEvent | WorkspaceNotificationUpdatedEvent;