PluginProbe
Code Snippets / 4.0.0-beta.2
Code Snippets v4.0.0-beta.2
4.0.0-beta.2 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 All 65 releases
← All changes | js/types/Snippet.ts +8 -0 3.10.0 → 4.0.0-beta.2 View file →
@@ -15,8 +15,16 @@
15 15 readonly conditionId: number
16 16 readonly lastActive?: number
17 17 readonly code_error?: readonly [string, number] | null
18 18 readonly code_error_trace?: string | null
19 + readonly createdBy?: SnippetAuthor | null
20 + readonly updatedBy?: SnippetAuthor | null
21 +}
22 +
23 +export interface SnippetAuthor {
24 + readonly id: number
25 + readonly displayName: string
26 + readonly avatarUrl: string
19 27 }
20 28
21 29 export const SNIPPET_TYPES = <const> ['php', 'html', 'css', 'js', 'cond']
22 30 export type SnippetType = typeof SNIPPET_TYPES[number]