Skip to content

Instantly share code, notes, and snippets.

@bnayae
Created January 12, 2021 17:39
Show Gist options
  • Select an option

  • Save bnayae/dc33c53e3231711b1aae68ac98c98cbe to your computer and use it in GitHub Desktop.

Select an option

Save bnayae/dc33c53e3231711b1aae68ac98c98cbe to your computer and use it in GitHub Desktop.
import { SerializableParam } from 'recoil';
export interface IRecoilId
extends Readonly<Record<string, SerializableParam>> {
id: string;
journey: JourneyType;
}
export enum JourneyType {
order = 'order',
review = 'review',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment