mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-27 02:41:53 +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 { cooldownTrigger } from './cooldownTrigger'
|
|
import { changeOnFirstSuccess } from './changeOnFirstSuccess'
|
|
|
|
export const defaultTrigger = changeOnFirstSuccess({
|
|
beforeFirstSuccess: cooldownTrigger(1000),
|
|
afterFirstSuccess: cooldownTrigger(30000),
|
|
})
|