feat: add grid map (#44557)

* feat: add map grid

* fix: lint/prettier/ts

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>
Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
This commit is contained in:
Ahmad Abdolsaheb
2021-12-23 19:29:52 +03:00
committed by GitHub
parent f540c839ed
commit cb201a8e8b
6 changed files with 163 additions and 107 deletions

View File

@@ -129,6 +129,20 @@ export interface VideoLocaleIds {
portuguese?: string;
}
export type ChallengeWithCompletedNode = {
block: string;
challengeType: number;
dashedName: string;
fields: {
slug: string;
};
id: string;
isCompleted: boolean;
order: number;
superBlock: SuperBlocks;
title: string;
};
export type ChallengeNode = {
challenge: {
block: string;