| 4 | import { getEntry } from "./entry"; |
| 5 | |
| 6 | export interface Collection { |
| 7 | items: string[] | "all"; |
| 8 | include: string[]; |
| 9 | } |
| 10 | |
| 11 | export const getCollection = <T = Record<string, unknown>>( |
| 12 | dataFolder: string, |
nothing calls this directly
no outgoing calls
no test coverage detected