Skip to content
Snippets Groups Projects
Unverified Commit fc552251 authored by Alexander Polyankin's avatar Alexander Polyankin Committed by GitHub
Browse files

Remove flow from questions (#19220)

parent e152e67f
Branches
Tags
No related merge requests found
/* flow */
import type { Collection } from "metabase-types/types/Collection";
import type { Label } from "metabase-types/types/Label.js";
export type Entity = {
id: number,
};
export type Item = {
entity: Entity,
id: number,
name: string,
description: string,
created: ?string,
by: ?string,
icon: ?string,
favorite: boolean,
archived: boolean,
selected: boolean,
visible: boolean,
collection: Collection,
labels: Label[],
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment