UNPKG

capacitor-notificare-assets

Version:
12 lines (11 loc) 498 B
import type { NotificareAsset } from './models/notificare-asset'; export declare class NotificareAssets { /** * Fetches a list of {@link NotificareAsset} for a specified group. * * @param {string} group - The name of the group whose assets are to be fetched. * @returns {Promise<NotificareAsset[]>} - A promise that resolves to a list of * {@link NotificareAsset} belonging to the specified group. */ static fetch(group: string): Promise<NotificareAsset[]>; }