UNPKG

186 BTypeScriptView Raw
1import { SalesforceId } from "./salesforce-id";
2
3export interface SObjectOptions {
4 Id?: SalesforceId | undefined;
5 Name?: string | undefined;
6 ExtId__c?: string | undefined;
7}