PluginProbe
Code Snippets / 3.5.0
Code Snippets v3.5.0
3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 3.0.1 All 64 releases
code-snippets / js / types / wp / Term.ts

Term.ts in Code Snippets 3.5.0, at js/types/wp/Term.ts

26 lines 546 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 export const TAGS_ENDPOINT = '/wp/v2/tags'
2 export const CATEGORIES_ENDPOINT = '/wp/v2/categories'
3
4 export interface Term {
5 id: number
6 count: number
7 description: string
8 link: string
9 name: string
10 slug: string
11 taxonomy: Taxonomy
12 meta: Record<string, unknown>
13 }
14
15 export type PostTag = Term
16
17 export interface Category extends Term {
18 parent: number
19 }
20
21 export type Taxonomy = 'category' | 'post_tag' | 'nav_menu' | 'link_category' | 'post_format'
22
23 export type Terms = Term[]
24 export type PostTags = PostTag[]
25 export type Categories = Category[]
26