Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import wpcom from 'calypso/lib/wp';
export interface Theme {
is_block_theme: boolean;
}
export async function fetchSiteActiveThemes( siteId: number ) {
return wpcom.req.get( {
path: `/sites/${ siteId }/themes?status=active`,
apiNamespace: 'wp/v2',
} );
}