3d541ede-23f5-4388-8853-f45a677b544b.js.map
1.24 KB
{"version":3,"sources":["assets/script/game/ui/view/type/PhoneCallView.ts"],"names":[],"mappings":";;;;;;;AA0Ba,QAAA,iBAAiB,GAAG,eAAe,CAAC;AAEtC,QAAA,yBAAyB,GAAG,KAAK,CAAC","file":"","sourceRoot":"/","sourcesContent":["import { DeepReadonly, DeepReadonlyObject } from \"simba-utils\";\nimport { Sentence, SentenceSelectContent } from \"../../../../avg/AVG\";\nimport { PureView } from \"../../../../common/classbase/ViewBase\";\nimport { ListItemProps, ListView, ListViewProps } from \"../../baseview/ListView\";\n\nexport interface PhoneCallItemProps extends ListItemProps {\n sentence: DeepReadonly<Sentence>;\n isSelf?: boolean;\n select?: number;\n}\n\nexport interface PhoneCallViewProps extends ListViewProps<PhoneCallItemProps> {\n name: string;\n icon: string;\n onCompletePlot: (select?: number) => void;\n onSetContent: (content?: DeepReadonlyObject<SentenceSelectContent>) => void;\n isSentenceSelectVisible: () => boolean;\n}\n\ntype PhoneCallViewBase = ListView & PureView<PhoneCallViewProps>;\n\nexport interface PhoneCallView extends PhoneCallViewBase {\n select(index: number);\n applicationChange(force: boolean);\n}\n\nexport const PhoneCallViewType = \"PhoneCallView\";\n\nexport let PhoneCallListAutoNextPlot = false;"]}