Interface for a model import/export handler.

The save and load handlers are both optional, in order to allow handlers that support only saving or loading.

interface IOHandler {
    load?: LoadHandler;
    save?: SaveHandler;
}

Properties

Properties