mirror of
https://github.com/standardnotes/server
synced 2026-07-15 02:07:45 -04:00
7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
import { Period } from './Period'
|
|
|
|
export interface PeriodKeyGeneratorInterface {
|
|
getPeriodKey(period: Period): string
|
|
getDiscretePeriodKeys(period: Period): string[]
|
|
}
|