MultiTimer
MultiTimer is a versatile multiple timers app for iPhone, iPad, Mac, Apple Watch, and Apple Vision. Protocol Launcher allows you to generate deep links to start, stop, pause, and resume timers in MultiTimer.
Usage
There are two ways to use this library:
- On-Demand import from subpaths enables tree-shaking and keeps bundles small.
- Full Import from the root package is convenient but includes all app modules.
Pick On-Demand for production builds; Full Import is fine for quick scripts or demos.
Select Installation Method
On-Demand
Recommended. Optimized for production.
Full Import
Convenient. Good for quick scripts.
Start Timer
ts
import { startTimer } from 'protocol-launcher/multi-timer'
const url = startTimer({
name: 'Lunch',
})Start Timer with Board
ts
import { startTimer } from 'protocol-launcher/multi-timer'
const url = startTimer({
name: 'Lunch',
board: 'Work',
})Stop Timer
ts
import { stopTimer } from 'protocol-launcher/multi-timer'
const url = stopTimer({
name: 'Lunch',
})Pause Timer
ts
import { pauseTimer } from 'protocol-launcher/multi-timer'
const url = pauseTimer({
name: 'Lunch',
})Resume Timer
ts
import { resumeTimer } from 'protocol-launcher/multi-timer'
const url = resumeTimer({
name: 'Lunch',
})