Skip to content

Commit

Permalink
Fix import code.
Browse files Browse the repository at this point in the history
  • Loading branch information
thesoftwarephilosopher committed Aug 23, 2024
1 parent 1c0ff81 commit f02b134
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions site/token-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export const tokenProvider = {
ctrlKeywords: [
'export', 'default', 'return', 'as', 'if', 'break', 'case', 'catch', 'continue',
'do', 'else', 'finally', 'for', 'throw', 'try', 'with', 'yield', 'await',
'import', 'from', 'type',
],

keywords: [
Expand All @@ -42,13 +43,13 @@ export const tokenProvider = {
'abstract', 'any', 'asserts', 'bigint', 'boolean',
'class', 'const', 'constructor', 'debugger',
'declare', 'delete', 'enum',
'extends', 'false', 'from', 'function', 'get',
'implements', 'import', 'in', 'infer', 'instanceof', 'interface',
'extends', 'false', 'function', 'get',
'implements', 'in', 'infer', 'instanceof', 'interface',
'is', 'keyof', 'let', 'module', 'namespace', 'never', 'new',
'null', 'number', 'object', 'out', 'package', 'private', 'protected',
'public', 'override', 'readonly', 'require', 'global', 'satisfies',
'set', 'static', 'string', 'super', 'switch', 'symbol', 'this',
'true', 'type', 'typeof', 'undefined', 'unique',
'true', 'typeof', 'undefined', 'unique',
'unknown', 'var', 'void', 'while', 'async', 'of'
],

Expand Down

0 comments on commit f02b134

Please sign in to comment.