952a5bd87c
Also, bootstraping a new LocalAdmin service to mock the AdminApi in the pusher
11 lines
289 B
TypeScript
11 lines
289 B
TypeScript
import { FetchMemberDataByUuidResponse } from "./AdminApi";
|
|
|
|
export interface AdminInterface {
|
|
fetchMemberDataByUuid(
|
|
userIdentifier: string,
|
|
playUri: string,
|
|
ipAddress: string,
|
|
characterLayers: string[]
|
|
): Promise<FetchMemberDataByUuidResponse>;
|
|
}
|