mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
20 lines
427 B
Plaintext
20 lines
427 B
Plaintext
{
|
|
"ext-evaluator": {
|
|
"description": "Generate a new evaluator.",
|
|
"scope": "typescript",
|
|
"prefix": "ext-evaluator",
|
|
"body": [
|
|
"/**",
|
|
" * Checks if ${2:<description>}.",
|
|
" * JSON ref: `app.$1`",
|
|
" */",
|
|
"export function ${1:name}(",
|
|
"\tcontext: AppRuleContext,",
|
|
"\t...args: RuleParameter[]",
|
|
"): boolean {",
|
|
"\treturn ${3:true};${0}",
|
|
"}"
|
|
]
|
|
}
|
|
}
|