mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
10 lines
378 B
TypeScript
10 lines
378 B
TypeScript
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/helpers/channels/category_children.ts
|
|
|
|
|
|
import { cacheHandlers } from "../../cache.ts";
|
|
|
|
/** Gets an array of all the channels ids that are the children of this category. */
|
|
export async function categoryChildren(id: bigint) {
|
|
return await cacheHandlers.filter("channels", (channel) => channel.parentId === id);
|
|
}
|