mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-26 02:11:56 +00:00
14 lines
385 B
TypeScript
14 lines
385 B
TypeScript
import { AddressReceipt } from "./AddressReceipt"
|
|
import { InterfaceReceipt } from "./interfaceReceipt"
|
|
|
|
/**
|
|
* Takes a list of addressReceipts
|
|
*
|
|
* Returns an interfaceReceipt, which is needed to create the service daemons
|
|
*/
|
|
export const exportInterfaces = (
|
|
_firstProof: AddressReceipt,
|
|
..._rest: AddressReceipt[]
|
|
) => ({} as InterfaceReceipt)
|
|
export default exportInterfaces
|