mirror of
https://github.com/standardnotes/server
synced 2026-08-01 08:16:44 -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[]
|
|
}
|