Fastis icon indicating copy to clipboard operation
Fastis copied to clipboard

Cannot infer type of closure parameter 'action' without a type annotation

Open allakin opened this issue 1 year ago • 2 comments

I can't get data range in dismissHandler and sent to currentValue

CleanShot 2024-06-01 at 16 49 27@2x

allakin avatar Jun 01 '24 13:06 allakin

Solved a problem through doneHandler method

	fastisController.doneHandler = { [weak self] date in
			if let newValue = date {
				currentValue = newValue 
			}
		}

allakin avatar Jun 01 '24 17:06 allakin

Hello. What data type is currentValue? it must conform to the FastisValue protocol

UriyDevyataev avatar Sep 20 '24 08:09 UriyDevyataev