芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/optimyar/wp-content/plugins/code-snippets/js/types/wp/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
readonly extra_capabilities?: Record
readonly avatar_urls: Record
meta: Record
} export type Users = User[]