quasvel
Version:
Access and interact with Aragon Organizations and their apps.
13 lines (9 loc) • 366 B
text/typescript
import { getAppInfo } from './interfaces'
import { AragonArtifact } from '../../types'
export function getAragonOsInternalAppInfo(appId: string): AragonArtifact {
return getAppInfo(appId, 'aragon')
}
export function getApmInternalAppInfo(appId: string): AragonArtifact {
return getAppInfo(appId, 'apm')
}
export { hasAppInfo, getAppInfo } from './interfaces'