mirror of
https://github.com/actions/stale.git
synced 2025-12-28 02:58:17 +00:00
5 lines
113 B
TypeScript
5 lines
113 B
TypeScript
export interface IStateStorage {
|
|
save(serializedState: string): Promise<void>;
|
|
restore(): Promise<string>;
|
|
}
|