mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-05-07 23:05:31 +00:00
7 lines
143 B
TypeScript
7 lines
143 B
TypeScript
import type { IList } from "./IList";
|
|
|
|
export default interface ISection {
|
|
title: string;
|
|
apiFunction: (page: number) => Promise<IList>;
|
|
}
|