mirror of
https://github.com/standardnotes/server
synced 2026-08-04 00:15:57 -04:00
6 lines
123 B
TypeScript
6 lines
123 B
TypeScript
import { Period } from './Period'
|
|
|
|
export interface PeriodKeyGeneratorInterface {
|
|
getPeriodKey(period: Period): string
|
|
}
|