golden hour
/home/godaofbq/hardchambers.com/wp-content/plugins/code-snippets/js/types/wp
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
127 B
Del
OK
Page.ts
209 B
Del
OK
Post.ts
989 B
Del
OK
PostType.ts
304 B
Del
OK
Term.ts
546 B
Del
OK
User.ts
543 B
Del
OK
Edit: User.ts
export const USERS_ENDPOINT = '/wp/v2/users' export interface User { readonly id: number username?: string name: string first_name?: string last_name?: string email?: string url: string description: string readonly link: string locale?: string nickname?: string slug: string registered_date?: string roles?: string[] readonly capabilities?: Record<string, boolean> readonly extra_capabilities?: Record<string, boolean> readonly avatar_urls: Record<string, string> meta: Record<string, unknown> } export type Users = User[]
Save