Skip to content

Theemo / @theemo/sync / SyncConfig

Interface: SyncConfig

The config used to configure the theemo sync command.

sync consists of three steps:

  1. reading
  2. lexing
  3. writing

See the config for each respective step. Reading and writing is expressed through the supported tools.

Properties

lexer

ts
lexer: LexerConfig;

Config to make sense of your tokens, as you need them in your domain

Source

config.ts:21


reader

ts
reader: ReaderConfig;

Config for reading tokens from external source

Source

config.ts:19


writer

ts
writer: WriterConfig;

Config to write them onto the disk for your used token manager tool

Source

config.ts:23