golden hour
/home/godaofbq/besthyperbaric.com/wp-content/plugins/code-snippets/js/types/schema
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
420 B
Del
OK
SnippetSchema.ts
484 B
Del
OK
SnippetsExport.ts
141 B
Del
OK
Edit: SnippetSchema.ts
import type { SnippetScope } from '../Snippet' export interface WritableSnippetSchema { name?: string desc?: string code?: string tags?: string[] scope?: SnippetScope condition_id?: number active?: boolean priority?: number network?: boolean | null shared_network?: boolean | null } export interface SnippetSchema extends Readonly<Required<WritableSnippetSchema>> { readonly id: number readonly modified: string readonly code_error?: readonly [string, number] | null }
Save