import api from '../lib/oo-api' import {OOAPIResult} from '../type/oo-api' export default async (): Promise> => { const ooapiRes = await api({ resource: 'users', pathParameter: 'sign', method: 'GET' }) return ooapiRes }