@strawbinary-io/api-video-strapi-5-plugin
Version:
A powerful Strapi plugin to easily manage your videos and integrate them in your project
13 lines (12 loc) • 613 B
TypeScript
/// <reference types="koa" />
import { Core } from '@strapi/strapi';
export declare const findOneWithPrivateVideoTransform: (documentId: string, strapi: Core.Strapi, params?: any) => Promise<any>;
export declare const findWithPrivateVideoTransform: (strapi: Core.Strapi, params?: any) => Promise<any[]>;
declare const _default: ({ strapi, }: {
strapi: Core.Strapi;
}) => {
count: (ctx: import("koa").Context) => Promise<number>;
find: (ctx: import("koa").Context) => Promise<any[]>;
findOne: (ctx: import("koa").Context) => Promise<any>;
} & Core.CoreAPI.Controller.Base;
export default _default;