Skip to content

Commit

Permalink
⏪️ back to 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
HubM committed Nov 2, 2023
1 parent d65b4ee commit 82908dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "@bdxio/bdxio.types",
"version": "1.3.6",
"main": "dist/index.js",
"version": "1.3.2",
"types": "dist/index.d.ts",
"files": [
"/dist"
Expand Down
10 changes: 1 addition & 9 deletions types/Faq.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
export const faqTargets = ["speakers", "sponsors", "participants"] as const;

type FAQTargets = (typeof faqTargets)[number]

export function isFAQTarget(value: any): value is FAQTargets {
return faqTargets.includes(value);
}

export type FAQTarget = {
id: number;
target: FAQTargets;
target: "speakers" | "sponsors" | "participants";
description?: string;
createdAt: string;
publishedAt: string;
Expand Down

0 comments on commit 82908dd

Please sign in to comment.