mirror of
https://github.com/nix-community/noogle.git
synced 2024-12-19 06:52:34 +03:00
12 lines
289 B
TypeScript
12 lines
289 B
TypeScript
export type BasicDataItem = {
|
|
item: React.ReactNode;
|
|
key: string;
|
|
};
|
|
|
|
export type BasicDataViewProps = {
|
|
items: BasicDataItem[];
|
|
pageCount?: number;
|
|
handleSearch?: (term: string) => void;
|
|
};
|
|
|
|
export type NixType = "attrset" | "list" | "string" | "int" | "bool" | "any"; |