mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-01 20:19:29 +08:00
10 lines
224 B
Text
10 lines
224 B
Text
import type {CodeKeywordDefinition} from "../../types"
|
|
|
|
const def: CodeKeywordDefinition = {
|
|
keyword: "id",
|
|
code() {
|
|
throw new Error('NOT SUPPORTED: keyword "id", use "$id" for schema ID')
|
|
},
|
|
}
|
|
|
|
export default def
|