mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
Run prettier across sdk/base and sdk/package to apply the standardized quote style (single quotes matching web).
8 lines
261 B
TypeScript
8 lines
261 B
TypeScript
import { TriggerInput } from './TriggerInput'
|
|
export { changeOnFirstSuccess } from './changeOnFirstSuccess'
|
|
export { cooldownTrigger } from './cooldownTrigger'
|
|
|
|
export type Trigger = (
|
|
getInput: () => TriggerInput,
|
|
) => AsyncIterator<unknown, unknown, never>
|