mirror of
https://github.com/actions/stale.git
synced 2026-07-02 22:22:52 +08:00
5 lines
113 B
TypeScript
5 lines
113 B
TypeScript
export interface IStateStorage {
|
|
save(serializedState: string): Promise<void>;
|
|
restore(): Promise<string>;
|
|
}
|