File size: 264 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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',
} );
}
|