rewrite module to typescript

This commit is contained in:
2025-01-14 17:36:15 +01:00
parent 9dc24f2d7b
commit b9f7615cd0
13 changed files with 435 additions and 491 deletions

26
src/variables.ts Normal file
View File

@@ -0,0 +1,26 @@
import { TogglTrack } from './main.js'
export default function (self: TogglTrack): void {
self.setVariableDefinitions([
{
name: 'Workspace',
variableId: 'workspace',
},
{
name: 'Current Timer Id',
variableId: 'timerId',
},
{
name: 'Current Timer Duration',
variableId: 'timerDuration',
},
{
name: 'Last Timer Duration',
variableId: 'lastTimerDuration',
},
{
name: 'Current Timer Description',
variableId: 'timerDescription',
},
])
}