10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
import { IGlobalVariable } from '@automatisch/types';
|
|
|
|
const isStillVerified = async ($: IGlobalVariable) => {
|
|
await $.http.get('?rest_route=/wp/v2/settings');
|
|
|
|
return true;
|
|
};
|
|
|
|
export default isStillVerified;
|