3d541ede-23f5-4388-8853-f45a677b544b.js.map 1.23 KB
{"version":3,"sources":["assets/script/game/ui/view/type/PhoneCallView.ts"],"names":[],"mappings":";;;;;;;AAyBa,QAAA,iBAAiB,GAAG,eAAe,CAAC;AAEtC,QAAA,yBAAyB,GAAG,KAAK,CAAC","file":"","sourceRoot":"/","sourcesContent":["import { ListItemProps, ListViewProps, ListView } from \"../../baseview/ListView\";\nimport { Sentence, SentenceContent, SentenceSelectContent } from \"../../../../avg/model/PlotModel\";\nimport { PureView } from \"../../../../common/classbase/ViewBase\";\nimport { DeepReadonly, DeepReadonlyObject } from \"simba-utils\";\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}\n\nexport const PhoneCallViewType = \"PhoneCallView\";\n\nexport let PhoneCallListAutoNextPlot = false;"]}