Skip to content

Instantly share code, notes, and snippets.

@B-Stefan
Created July 30, 2019 20:48
Show Gist options
  • Save B-Stefan/aec71b1bafe4b9a401351376c58008d8 to your computer and use it in GitHub Desktop.
Save B-Stefan/aec71b1bafe4b9a401351376c58008d8 to your computer and use it in GitHub Desktop.
Zapier-Platform-Typescript-Schema
enum RecipeStyle {
Italian = "italian",
Mexian = "mexican"
}
export default interface Recipe {
id: string;
directions: any;
authorId: string;
name: string;
style: RecipeStyle;
createdAt: Date;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment